home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / PRGMANIA / QEDSRC / DEBUG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-14  |  408 b   |  22 lines

  1. #ifndef _qed_debug_h_
  2. #define _qed_debug_h_
  3.  
  4.  
  5. /* Möglichkeiten: Con, TCON, DBW, Datei, Modem1, Modem2, Seriell1, Seriell2, Prn */
  6.  
  7. /*#define DEBUG Con*/
  8. /*#define DEBUG TCON*/
  9. /*#define DEBUG Datei*/
  10. #undef DEBUG
  11.  
  12. #ifdef DEBUG
  13. #include "..\cflib\debug.h"
  14. #if DEBUG == Datei
  15. #define DEBUGFILE "i:\\qed-debug.log"
  16. #else
  17. #define DEBUGFILE NULL
  18. #endif /* Datei */
  19. #endif /* DEBUG */
  20.  
  21. #endif
  22.